home *** CD-ROM | disk | FTP | other *** search
/ Network Supervisor's Toolkit / Network Supervisor's Toolkit.iso / novell / fyi5 / tech2.txt < prev    next >
Text File  |  1996-07-10  |  3KB  |  58 lines

  1. Subject: Compaq Systempro dataguarding
  2. Date: 4/6/90
  3.  
  4. Question:
  5.  
  6. Does anyone know the specific differences between data-guarding,
  7. mirroring & duplexing on the Compaq SystemPro?  Presumably you do
  8. not need NetWare for data-guarding or mirroring, and
  9. data-guarding will result in performance degradation if a drive
  10. fails, where mirroring will not.  SFT NetWare is required for
  11. duplexing.
  12.  
  13. But how does data-guarding work, and how does it compare
  14. specifically with mirroring?  How does Compaq's hardware
  15. mirroring compare with SFT NetWare mirroring?
  16.  
  17.  
  18. Answer:
  19.  
  20. Just to clear up a miss understanding on the DataGuarding feature
  21. on the Compaq IDA.  DataGuarding is NOT a data compression!
  22. DataGuarding is an exclusive or (XOR) of drives 1,2, and 3.  The
  23. result is store on the fourth drive.  This allow the driver that
  24. resides on the IDA controller to build the data on the fly if one
  25. of the drives were to fail.  The data might look like this:
  26.  
  27. Drive 1         Drive 2         Drive 3         Drive 4
  28. -------         -------         -------         -------
  29.   0               0               0               0
  30.   0               0               1               1
  31.   0               1               0               1
  32.   0               1               1               0
  33.   1               0               0               1
  34.   1               0               1               0
  35.   1               1               0               0
  36.   1               1               1               1
  37.  
  38.  
  39. If drive two were to fail you would have enough information to
  40. rebuild the data that existed on the drive.  The controller would
  41. perform and XOR on the other three drives.
  42.  
  43. Drive 1         Drive 2         Drive 3         Drive 4  Rebuild
  44. -------         -------         -------         -------  -------
  45.   0               X               0               0           0
  46.   0               X               1               1           0
  47.   0               X               0               1           1
  48.   0               X               1               0        1
  49.   1               X               0               1        0
  50.   1               X               1               0        0
  51.   1               X               0               0        1
  52.   1               X               1               1        1
  53.  
  54. The nice thing about the data guard is that you protect yourself
  55. against the lost of a drive without having to give up 50% of your
  56. data storage potential.  In other words, a level of protection
  57. between disk mirroring and non disk mirrored systems.
  58.